home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gs.c < prev    next >
C/C++ Source or Header  |  1996-04-16  |  2KB  |  69 lines

  1. /* Copyright (C) 1989, 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gs.c */
  20. /* 'main' program for Ghostscript */
  21. #include "ghost.h"
  22. #include "imain.h"
  23. #include "imainarg.h"
  24. #include "iminst.h"
  25.  
  26. /* Define an optional array of strings for testing. */
  27. /*#define RUN_STRINGS*/
  28. #ifdef RUN_STRINGS
  29. private const char *run_strings[] = {
  30.   "2 vmreclaim /SAVE save def 2 vmreclaim",
  31.   "(saved\n) print flush",
  32.   "SAVE restore (restored\n) print flush 2 vmreclaim",
  33.   "(done\n) print flush quit",
  34.   0
  35. };
  36. #endif
  37.  
  38. int
  39. main(int argc, char *argv[])
  40. {    gs_main_instance *minst = gs_main_instance_default();
  41.     gs_main_init_with_args(minst, argc, argv);
  42.  
  43. #ifdef RUN_STRINGS
  44.     {    /* Run a list of strings (for testing). */
  45.         const char **pstr = run_strings;
  46.         for ( ; *pstr; ++pstr )
  47.           {    int exit_code;
  48.             ref error_object;
  49.             int code;
  50.             fprintf(stdout, "{%s} =>\n", *pstr);
  51.             fflush(stdout);
  52.             code = gs_main_run_string(minst, *pstr, 0,
  53.                           &exit_code, &error_object);
  54.             zflush(osp);
  55.             fprintf(stdout, " => code = %d\n", code);
  56.             fflush(stdout);
  57.             if ( code < 0 )
  58.               gs_exit(1);
  59.           }
  60.     }
  61. #endif
  62.  
  63.     if ( minst->run_start )
  64.       gs_main_run_start(minst);
  65.  
  66.     gs_exit(0);            /* exit */
  67.     /* NOTREACHED */
  68. }
  69.